ICEOptions

public enum ICEOptions

Enumerator for setting up ICE usage type

Since

4.1.0

Entries

Link copied to clipboard

Collects ICE candidates before initializing signaling. Vanilla ICE requires candidate collection process, which may take time due to number of interfaces in client’s device and network setup conditions. Vanilla ICE asks clients to sends all candidates in the offer and answer SDPs.This is causing call setup delays. Each side waits for its own candidate collection interval.

Link copied to clipboard

Completes signaling without waiting for candidate collection. Sends collected candidates to each other (as collection of candidates finished) after the call signaling is done and call is established. This may be causing media delays.

Functions

Link copied to clipboard
public static ICEOptions valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public static Array<ICEOptions> values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.